home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Erich Tran',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_BarrelCorrection():
- return {
- 'PreserveCentralScale': App.Constants.Boolean.false,
- 'Strength': 40
- }
-
- def Do(Environment):
- # Barrel Correction
- App.Do( Environment, 'BarrelCorrection', Preset_BarrelCorrection())
-
-